ci: GitHub Actions for unit tests and lint#35
Merged
Merged
Conversation
- ci.yml: go vet + go test (both modules) + golangci-lint on every PR/push - release.yml: stub for GoReleaser on v* tags (ready when embed is implemented) - Restructure release_plan.md into phased roadmap: CI → Embed → GoReleaser → Integration CI Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Fix TestDeployRemote_Success: set HOME to tempdir so mTLS cert writes succeed - Add os.MkdirAll for mtls directory in deployRemote (was assuming gateway created it) - Add .golangci.yml (v2 format) with errcheck disabled — too noisy for best-effort k8s calls - Update CI to use golangci-lint-action@v8 (v2 compatible) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.github/workflows/ci.yml— runsgo vet,go test ./...(both modules), andgolangci-linton every PR and push to main.github/workflows/release.yml— stub for GoReleaser, triggered onv*tags (ready when embed is implemented in Phase 1)release_plan.mdinto phased roadmap: CI → Embed → GoReleaser → Integration CITest plan
go test ./...passes locallygo vet ./...clean🤖 Generated with Claude Code